release: v1.5.0 — daily PyPI poll for newer engine + version realignment#47
Conversation
Adds a non-blocking notifier that checks PyPI once per day for a newer `pipeline-check` engine and surfaces an Upgrade prompt when one is available. Action runs the existing `upgradeInTerminal` flow (terminal opens, command typed, user reviews and presses Enter) — the "no silent pip mutations" invariant from src/install.ts holds. Failure paths (offline, 5xx, malformed JSON, timeout) are silent and logged. New `pipelineCheck.engineUpdates.checkEnabled` setting (default true) turns the check off entirely. Independent of the hard `MIN_ENGINE_VERSION` floor in src/preflight.ts: the floor still drives the Upgrade welcome panel when the installed engine is too old to support the extension's features; the new notifier covers the "preflight succeeded but newer is available" gap. Version jumps 1.1.0 → 1.5.0 to align the extension stream with the upstream pipeline-check engine's 1.5.x line so users can read the two side-by-side. No skipped functionality between 1.1.0 and 1.5.0; the engine-update notifier is the only user-visible change. 391/391 tests pass (+27 in src/engineUpdates.test.ts), typecheck and lint clean, prod-only npm audit clean. Bundle smoke OK at 376.3 KB. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Warning Review limit reached
More reviews will be available in 20 minutes and 34 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (5)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
globalStatetimestamp), the extension querieshttps://pypi.org/pypi/pipeline-check/jsonafter a successful preflight and surfaces a non-blocking notification when PyPI's latest stable is newer than the installed engine. Upgrade in terminal runs the existingupgradeInTerminalflow (terminal opens, command typed, user reviews + Enter — the "no silent pip mutations" invariant holds). Skip this version silences the prompt for that exact version only; later releases re-prompt. New settingpipelineCheck.engineUpdates.checkEnabled(defaulttrue) turns the check off entirely.MIN_ENGINE_VERSION. The hard floor in src/preflight.ts still drives the Upgrade welcome panel when the engine is too old to support the extension's features; the notifier covers the orthogonal "preflight succeeded but newer is available" gap.pipeline-checkengine's 1.5.x line. No skipped functionality between 1.1.0 and 1.5.0; the notifier is the only user-visible change.Test plan
npm run typecheck— cleannpm test— 391/391 pass (was 364; +27 new insrc/engineUpdates.test.tscovering throttle, fetch success/5xx/network/malformed/missing-impl, and orchestration: disabled/throttled/fetch_failed/no_newer/skipped/prompted×3, persistence on success vs failure, skip-then-newer re-prompts, session latch holds through fetch failure)npm run lint— cleannpm run vscode:prepublish— bundle 376.3 KBnpm run smoke—activate/deactivateexported,vscode-languageclientbundlednpm audit --omit=dev --audit-level=high— 0 vulnerabilities (matches publish gate)v1.5.0after merge to trigger Marketplace + Open VSX publish🤖 Generated with Claude Code